home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / pci / pci.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  6KB  |  171 lines

  1. /*
  2.  *    The PCI Library
  3.  *
  4.  *    Copyright (c) 1997--2005 Martin Mares <mj@ucw.cz>
  5.  *
  6.  *    Can be freely distributed and used under the terms of the GNU GPL.
  7.  */
  8.  
  9. #ifndef _PCI_LIB_H
  10. #define _PCI_LIB_H
  11.  
  12. #include "config.h"
  13. #include "header.h"
  14. #include "types.h"
  15.  
  16. #define PCI_LIB_VERSION 0x020200
  17.  
  18. /*
  19.  *    PCI Access Structure
  20.  */
  21.  
  22. struct pci_methods;
  23.  
  24. enum pci_access_type {
  25.   /* Known access methods, remember to update access.c as well */
  26.   PCI_ACCESS_AUTO,            /* Autodetection (params: none) */
  27.   PCI_ACCESS_SYS_BUS_PCI,        /* Linux /sys/bus/pci (params: path) */
  28.   PCI_ACCESS_PROC_BUS_PCI,        /* Linux /proc/bus/pci (params: path) */
  29.   PCI_ACCESS_I386_TYPE1,        /* i386 ports, type 1 (params: none) */
  30.   PCI_ACCESS_I386_TYPE2,        /* i386 ports, type 2 (params: none) */
  31.   PCI_ACCESS_FBSD_DEVICE,        /* FreeBSD /dev/pci (params: path) */
  32.   PCI_ACCESS_AIX_DEVICE,        /* /dev/pci0, /dev/bus0, etc. */
  33.   PCI_ACCESS_NBSD_LIBPCI,        /* NetBSD libpci */
  34.   PCI_ACCESS_DUMP,            /* Dump file (params: filename) */
  35.   PCI_ACCESS_MAX
  36. };
  37.  
  38. struct pci_access {
  39.   /* Options you can change: */
  40.   unsigned int method;            /* Access method */
  41.   char *method_params[PCI_ACCESS_MAX];    /* Parameters for the methods */
  42.   int writeable;            /* Open in read/write mode */
  43.   int buscentric;            /* Bus-centric view of the world */
  44.   char *id_file_name;            /* Name of ID list file */
  45.   int numeric_ids;            /* Don't resolve device IDs to names */
  46.   int debugging;            /* Turn on debugging messages */
  47.  
  48.   /* Functions you can override: */
  49.   void (*error)(char *msg, ...);    /* Write error message and quit */
  50.   void (*warning)(char *msg, ...);    /* Write a warning message */
  51.   void (*debug)(char *msg, ...);    /* Write a debugging message */
  52.  
  53.   struct pci_dev *devices;        /* Devices found on this bus */
  54.  
  55.   /* Fields used internally: */
  56.   struct pci_methods *methods;
  57.   struct id_entry **id_hash;        /* names.c */
  58.   struct id_bucket *current_id_bucket;
  59.   int fd;                /* proc: fd */
  60.   int fd_rw;                /* proc: fd opened read-write */
  61.   struct pci_dev *cached_dev;        /* proc: device the fd is for */
  62.   int fd_pos;                /* proc: current position */
  63. };
  64.  
  65. /* Initialize PCI access */
  66. struct pci_access *pci_alloc(void);
  67. void pci_init(struct pci_access *);
  68. void pci_cleanup(struct pci_access *);
  69.  
  70. /* Scanning of devices */
  71. void pci_scan_bus(struct pci_access *acc);
  72. struct pci_dev *pci_get_dev(struct pci_access *acc, int domain, int bus, int dev, int func); /* Raw access to specified device */
  73. void pci_free_dev(struct pci_dev *);
  74.  
  75. /*
  76.  *    Devices
  77.  */
  78.  
  79. struct pci_dev {
  80.   struct pci_dev *next;            /* Next device in the chain */
  81.   u16 domain;                /* PCI domain (host bridge) */
  82.   u8 bus, dev, func;            /* Bus inside domain, device and function */
  83.  
  84.   /* These fields are set by pci_fill_info() */
  85.   int known_fields;            /* Set of info fields already known */
  86.   u16 vendor_id, device_id;        /* Identity of the device */
  87.   int irq;                /* IRQ number */
  88.   pciaddr_t base_addr[6];        /* Base addresses */
  89.   pciaddr_t size[6];            /* Region sizes */
  90.   pciaddr_t rom_base_addr;        /* Expansion ROM base address */
  91.   pciaddr_t rom_size;            /* Expansion ROM size */
  92.  
  93.   /* Fields used internally: */
  94.   struct pci_access *access;
  95.   struct pci_methods *methods;
  96.   u8 *cache;                /* Cached config registers */
  97.   int cache_len;
  98.   int hdrtype;                /* Cached low 7 bits of header type, -1 if unknown */
  99.   void *aux;                /* Auxillary data */
  100. };
  101.  
  102. #define PCI_ADDR_IO_MASK (~(pciaddr_t) 0x3)
  103. #define PCI_ADDR_MEM_MASK (~(pciaddr_t) 0xf)
  104.  
  105. u8 pci_read_byte(struct pci_dev *, int pos); /* Access to configuration space */
  106. u16 pci_read_word(struct pci_dev *, int pos);
  107. u32  pci_read_long(struct pci_dev *, int pos);
  108. int pci_read_block(struct pci_dev *, int pos, u8 *buf, int len);
  109. int pci_write_byte(struct pci_dev *, int pos, u8 data);
  110. int pci_write_word(struct pci_dev *, int pos, u16 data);
  111. int pci_write_long(struct pci_dev *, int pos, u32 data);
  112. int pci_write_block(struct pci_dev *, int pos, u8 *buf, int len);
  113.  
  114. int pci_fill_info(struct pci_dev *, int flags); /* Fill in device information */
  115.  
  116. #define PCI_FILL_IDENT        1
  117. #define PCI_FILL_IRQ        2
  118. #define PCI_FILL_BASES        4
  119. #define PCI_FILL_ROM_BASE    8
  120. #define PCI_FILL_SIZES        16
  121. #define PCI_FILL_RESCAN        0x10000
  122.  
  123. void pci_setup_cache(struct pci_dev *, u8 *cache, int len);
  124.  
  125. /*
  126.  *    Filters
  127.  */
  128.  
  129. struct pci_filter {
  130.   int domain, bus, slot, func;            /* -1 = ANY */
  131.   int vendor, device;
  132. };
  133.  
  134. void pci_filter_init(struct pci_access *, struct pci_filter *);
  135. char *pci_filter_parse_slot(struct pci_filter *, char *);
  136. char *pci_filter_parse_id(struct pci_filter *, char *);
  137. int pci_filter_match(struct pci_filter *, struct pci_dev *);
  138.  
  139. /*
  140.  *    Conversion of PCI ID's to names (according to the pci.ids file)
  141.  *
  142.  *    Call pci_lookup_name() to identify different types of ID's:
  143.  *
  144.  *    VENDOR                (vendorID) -> vendor
  145.  *    DEVICE                (vendorID, deviceID) -> device
  146.  *    VENDOR | DEVICE            (vendorID, deviceID) -> combined vendor and device
  147.  *    SUBSYSTEM | VENDOR        (subvendorID) -> subsystem vendor
  148.  *    SUBSYSTEM | DEVICE        (vendorID, deviceID, subvendorID, subdevID) -> subsystem device
  149.  *    SUBSYSTEM | VENDOR | DEVICE    (vendorID, deviceID, subvendorID, subdevID) -> combined subsystem v+d
  150.  *    SUBSYSTEM | ...            (-1, -1, subvendorID, subdevID) -> generic subsystem
  151.  *    CLASS                (classID) -> class
  152.  *    PROGIF                (classID, progif) -> programming interface
  153.  */
  154.  
  155. char *pci_lookup_name(struct pci_access *a, char *buf, int size, int flags, ...);
  156.  
  157. int pci_load_name_list(struct pci_access *a);    /* Called automatically by pci_lookup_*() when needed; returns success */
  158. void pci_free_name_list(struct pci_access *a);    /* Called automatically by pci_cleanup() */
  159.  
  160. enum pci_lookup_mode {
  161.   PCI_LOOKUP_VENDOR = 1,        /* Vendor name (args: vendorID) */
  162.   PCI_LOOKUP_DEVICE = 2,        /* Device name (args: vendorID, deviceID) */
  163.   PCI_LOOKUP_CLASS = 4,            /* Device class (args: classID) */
  164.   PCI_LOOKUP_SUBSYSTEM = 8,
  165.   PCI_LOOKUP_PROGIF = 16,        /* Programming interface (args: classID, prog_if) */
  166.   PCI_LOOKUP_NUMERIC = 0x10000,        /* Want only formatted numbers; default if access->numeric_ids is set */
  167.   PCI_LOOKUP_NO_NUMBERS = 0x20000    /* Return NULL if not found in the database; default is to print numerically */
  168. };
  169.  
  170. #endif
  171.